home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / lib / misc / RCS / version.c,v < prev   
Encoding:
Text File  |  1990-02-06  |  1.5 KB  |  76 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     90.02.06.15.35.59;  author douglis;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     90.02.06.15.35.18;  author douglis;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Returns version from version.h  Ideally version.h is recreated
  22. and this file is recompiled just before the main program is loaded.
  23. @
  24.  
  25.  
  26. 1.2
  27. log
  28. @changed copywrite notice
  29. @
  30. text
  31. @/* 
  32.  * version.c --
  33.  *
  34.  *     Returns version from version.h  Ideally version.h is recreated
  35.  *     and this file is recompiled just before the main program is loaded.
  36.  *
  37.  * Copyright 1985, 1990 Regents of the University of California
  38.  * Permission to use, copy, modify, and distribute this
  39.  * software and its documentation for any purpose and without
  40.  * fee is hereby granted, provided that the above copyright
  41.  * notice appear in all copies.  The University of California
  42.  * makes no representations about the suitability of this
  43.  * software for any purpose.  It is provided "as is" without
  44.  * express or implied warranty.
  45.  */
  46.  
  47. #ifndef lint
  48. static char rcsid[] = "$Header: /sprite/lib/misc/RCS/version.c,v 1.1 90/02/06 15:35:18 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  49. #endif not lint
  50.  
  51. #include "version.h"    /* automatically generated */
  52.  
  53. static char versionString[] = VERSION ;
  54.  
  55. char *
  56. Version()
  57. {
  58.     return(versionString) ;
  59. }
  60. @
  61.  
  62.  
  63. 1.1
  64. log
  65. @Initial revision
  66. @
  67. text
  68. @d7 8
  69. a14 2
  70.  * Copyright (C) 1985 Regents of the University of California
  71.  * All rights reserved.
  72. d18 1
  73. a18 1
  74. static char rcsid[] = "$Header$ SPRITE (Berkeley)";
  75. @
  76.